home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / whttpd14.zip / CGI-DOS / DEMOSRCH.BAT < prev    next >
DOS Batch File  |  1994-04-29  |  695b  |  27 lines

  1. rem
  2. rem ****************
  3. rem * DEMOSRCH.BAT *
  4. rem ****************
  5. rem
  6. rem Script to support the Form-based search in the demo
  7. rem
  8. rem Bob Denny <rdenny@netcom.com>
  9. rem 28-Apr-94
  10. rem
  11. rem Echo is OFF at script entry
  12. rem
  13. set of=%output_file%
  14. echo Content-type:text/plain > %of%
  15. echo. >> %of%
  16. if NOT %REQUEST_METHOD%==POST goto done
  17. echo The following coded string contains your search specifications. >> %of%
  18. echo In a real application, this would be decoded and given to a database >> %of%
  19. echo back-end, and the results formatted as hypertext for display. >> %of%
  20. echo. >> %of%
  21. echo Here are your search specs: >> %of%
  22. echo. >> %of%
  23. type %CONTENT_FILE% >> %of%
  24. :done
  25.  
  26.  
  27.